This fixes the build of GTK+ master on Visual Studio 2013 (and possibly
others) as snprintf() may not be supported even if the required C99
features are supported by the compiler.
https://bugzilla.gnome.org/show_bug.cgi?id=773299
if (crenderer->snapshot->record_names)
{
char name[64];
- snprintf (name, sizeof (name), "Glyphs<%d>", glyphs->num_glyphs);
+ g_snprintf (name, sizeof (name), "Glyphs<%d>", glyphs->num_glyphs);
gsk_render_node_set_name (node, name);
}